|
1 |
| -<% if (server === 'adonis') { %>const { resolve } = require('path') |
| 1 | +<% if (esm) { -%> |
| 2 | +<% if (ui === 'vuetify') { -%> |
| 3 | +import VuetifyLoaderPlugin from 'vuetify-loader/lib/plugin' |
| 4 | +<% } -%> |
| 5 | +import pkg from './package' |
| 6 | +<% } else if (server === 'adonis') { -%> |
| 7 | +const { resolve } = require('path') |
2 | 8 | const pkg = require('../package')
|
3 |
| -<% } else { %>const pkg = require('./package') |
4 |
| -<% } %> |
5 |
| -<% if (ui === 'vuetify') { %> |
6 |
| -const VuetifyLoaderPlugin = require('vuetify-loader/lib/plugin') |
7 |
| -<% } %> |
| 9 | +<%} else { -%> |
| 10 | +const pkg = require('./package') |
| 11 | +<% } -%> |
| 12 | +<% if (!esm) { -%> |
| 13 | +<% if (ui === 'vuetify') { %>const VuetifyLoaderPlugin = require('vuetify-loader/lib/plugin')<% } %> |
| 14 | +<% } -%> |
| 15 | + |
| 16 | +<% if (esm) { -%> |
| 17 | +export default { |
| 18 | +<% } else { -%> |
8 | 19 | module.exports = {
|
| 20 | +<% } -%> |
9 | 21 | mode: '<%= mode %>',
|
10 | 22 | <% if (server === 'adonis') { %>
|
11 | 23 | dev: process.env.NODE_ENV === 'development',
|
@@ -94,17 +106,16 @@ module.exports = {
|
94 | 106 | plugins: [new VuetifyLoaderPlugin()],
|
95 | 107 | loaders: {
|
96 | 108 | stylus: {
|
97 |
| - import: ["~assets/style/variables.styl"] |
| 109 | + import: ['~assets/style/variables.styl'] |
98 | 110 | }
|
99 |
| - }, |
100 |
| - <% } %><% if (ui === 'element-ui') { %> |
| 111 | + },<% } %><% if (ui === 'element-ui') { %> |
101 | 112 | transpile: [/^element-ui/],
|
102 | 113 | <% } %>
|
103 | 114 | /*
|
104 | 115 | ** You can extend webpack config here
|
105 | 116 | */
|
106 |
| - extend(config, ctx) { |
107 |
| - <% if (eslint === 'yes') { %>// Run ESLint on save |
| 117 | + extend(config, ctx) {<% if (eslint === 'yes') { %> |
| 118 | + // Run ESLint on save |
108 | 119 | if (ctx.isDev && ctx.isClient) {
|
109 | 120 | config.module.rules.push({
|
110 | 121 | enforce: 'pre',
|
|
0 commit comments