mirror of
https://github.com/KevinMidboe/vue-js-modal.git
synced 2025-10-29 09:50:22 +00:00
12 lines
247 B
JavaScript
12 lines
247 B
JavaScript
const path = require('path')
|
|
const webpack = require('webpack')
|
|
const merge = require('webpack-merge')
|
|
const base = require('./webpack.base.config')
|
|
|
|
module.exports = merge(base, {
|
|
target: 'node',
|
|
output: {
|
|
filename: 'ssr.index.js'
|
|
}
|
|
})
|