vue.config.js 203 B

12345678910111213
  1. module.exports = {
  2. runtimeCompiler: true,
  3. productionSourceMap: false,
  4. devServer: {
  5. port: 3100
  6. },
  7. configureWebpack: {
  8. output: {
  9. libraryExport: 'default'
  10. },
  11. externals: { vue: "Vue" },
  12. }
  13. }