docs: update resolve path to use src (#9605)
Update path used in `resolve` of modules to start with `src`
This commit is contained in:
@@ -63,7 +63,7 @@ module.exports = defineConfig({
|
||||
options: {
|
||||
providers: [
|
||||
{
|
||||
resolve: "./modules/my-auth",
|
||||
resolve: "./src/modules/my-auth",
|
||||
id: "my-auth",
|
||||
options: {
|
||||
// provider options...
|
||||
|
||||
@@ -69,7 +69,7 @@ module.exports = defineConfig({
|
||||
options: {
|
||||
providers: [
|
||||
{
|
||||
resolve: "./modules/my-file",
|
||||
resolve: "./src/modules/my-file",
|
||||
id: "my-file",
|
||||
options: {
|
||||
// provider options...
|
||||
|
||||
@@ -63,7 +63,7 @@ module.exports = defineConfig({
|
||||
options: {
|
||||
providers: [
|
||||
{
|
||||
resolve: "./modules/my-fulfillment",
|
||||
resolve: "./src/modules/my-fulfillment",
|
||||
id: "my-fulfillment",
|
||||
options: {
|
||||
// provider options...
|
||||
|
||||
@@ -73,7 +73,7 @@ module.exports = defineConfig({
|
||||
options: {
|
||||
providers: [
|
||||
{
|
||||
resolve: "./modules/my-notification",
|
||||
resolve: "./src/modules/my-notification",
|
||||
id: "my-notification",
|
||||
options: {
|
||||
channels: ["email"],
|
||||
|
||||
@@ -72,7 +72,7 @@ module.exports = defineConfig({
|
||||
options: {
|
||||
providers: [
|
||||
{
|
||||
resolve: "./modules/my-payment",
|
||||
resolve: "./src/modules/my-payment",
|
||||
id: "my-payment",
|
||||
options: {
|
||||
// provider options...
|
||||
|
||||
Reference in New Issue
Block a user