Forked from ejlofgren/snippet of package.json scripts
Last active
November 25, 2022 01:40
-
-
Save educkf/97e76da8d8c2b5dad17846a7d576e205 to your computer and use it in GitHub Desktop.
Sample Split Vue Config Files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"scripts": { | |
"serve": "vue-cli-service serve", | |
"build:admin": "rimraf vue.config.js && copy vue.configAdmin.js vue.config.js && vue-cli-service build --dest dist/admin src/admin/main.js && rimraf vue.config.js && copy vue.configDefault.js vue.config.js", | |
"build:client": "rimraf vue.config.js && copy vue.configClient.js vue.config.js && vue-cli-service build --dest dist/client src/client/main.js && rimraf vue.config.js && copy vue.configDefault.js vue.config.js", | |
"lint": "vue-cli-service lint" | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const path = require('path') | |
module.exports = { | |
pages: { | |
admin: { | |
entry: 'src/admin/main.js', | |
template: 'public/index.html', | |
filename: 'index.html', | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const path = require('path') | |
module.exports = { | |
pages: { | |
index: { | |
entry: 'src/client/main.js', | |
template: 'public/index.html', | |
filename: 'index.html', | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const path = require('path') | |
module.exports = { | |
pages: { | |
index: { | |
entry: 'src/client/main.js', | |
template: 'public/index.html', | |
filename: 'index.html', | |
}, | |
admin: { | |
entry: 'src/admin/main.js', | |
template: 'public/index.html', | |
filename: 'admin.html', | |
} | |
}, | |
devServer: { | |
port: 8080, | |
historyApiFallback: { | |
rewrites: [ | |
{ from: /^\/admin\/?.*/, to: path.posix.join('/', 'admin.html') }, | |
{ from: /./, to: path.posix.join('/', 'index.html') } | |
] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Saved my life, man!
Many thanks!