mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-15 18:34:50 +00:00
36 lines
1.0 KiB
TypeScript
36 lines
1.0 KiB
TypeScript
import VueLoaderPlugin from 'vue-loader/dist/pluginWebpack5'
|
|
import { DefinePlugin } from 'webpack'
|
|
import VueSSRClientPlugin from '../plugins/vue/client'
|
|
import VueSSRServerPlugin from '../plugins/vue/server'
|
|
import { WebpackConfigContext } from '../utils/config'
|
|
|
|
export function vue (ctx: WebpackConfigContext) {
|
|
const { options, config } = ctx
|
|
|
|
config.plugins.push(new VueLoaderPlugin())
|
|
|
|
config.module.rules.push({
|
|
test: /\.vue$/i,
|
|
loader: 'vue-loader',
|
|
options: options.build.loaders.vue
|
|
})
|
|
|
|
if (ctx.isClient) {
|
|
config.plugins.push(new VueSSRClientPlugin({
|
|
filename: `../server/${ctx.name}.manifest.json`
|
|
}))
|
|
} else {
|
|
config.plugins.push(new VueSSRServerPlugin({
|
|
filename: `${ctx.name}.manifest.json`
|
|
}))
|
|
}
|
|
|
|
// Feature flags
|
|
// https://github.com/vuejs/vue-next/tree/master/packages/vue#bundler-build-feature-flags
|
|
// TODO: Provide options to toggle
|
|
config.plugins.push(new DefinePlugin({
|
|
__VUE_OPTIONS_API__: 'true',
|
|
__VUE_PROD_DEVTOOLS__: 'false'
|
|
}))
|
|
}
|