123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- var path = require('path')
- var webpack = require('webpack')
- var HtmlWebpackPlugin = require('html-webpack-plugin')
- var outfile = 'vue-edi-table.js'
- module.exports = {
- entry: './src/main.js',
- output: {
- path: path.resolve(__dirname, './dist'),
- publicPath: '/dist',
- filename: outfile
- // libraryTarget: 'commonjs2'
- },
- module: {
- rules: [
- {
- test: /\.css$/,
- use: [
- 'vue-style-loader',
- 'css-loader'
- ]
- },
- {
- test: /\.vue$/,
- loader: 'vue-loader',
- options: {
- loaders: {
- }
- // other vue-loader options go here
- }
- },
- {
- test: /\.(js|jsx)$/,
- loader: 'babel-loader',
- exclude: /node_modules/
- },
- {
- test: /\.(png|jpg|gif|svg)$/,
- loader: 'file-loader',
- options: {
- name: '[name].[ext]?[hash]'
- }
- },
- {
- test: /\.(ttf|woff)$/,
- loader: 'file-loader',
- options: {
- name: '[name].[ext]?[hash]'
- }
- }
- ]
- },
- resolve: {
- alias: {
- '@': path.join(__dirname, 'src'),
- 'vue$': 'vue/dist/vue.esm.js'
- },
- extensions: ['.vue', '*', '.js', '.json', '.jsx']
- },
- devServer: {
- host: '0.0.0.0',
- port: 8081,
- disableHostCheck: true,
- historyApiFallback: true,
- noInfo: true,
- overlay: true,
- clientLogLevel: 'none'
- },
- performance: {
- hints: false
- },
- devtool: '#eval-source-map'
- }
- if (process.env.NODE_ENV === 'development') {
- Object.assign(module.exports, {
- entry: './src/main.js',
- output: {
- path: path.resolve(__dirname, './docs'),
- // publicPath: '/vue-edi-table/',
- publicPath: '/',
- filename: 'index.js'
- }
- })
- module.exports.plugins = (module.exports.plugins || []).concat([
- new HtmlWebpackPlugin({ filename: 'index.html', template: 'index.html' })
- ])
- }
- if (process.env.NODE_ENV === 'production') {
- module.exports.devtool = '#source-map'
- // http://vue-loader.vuejs.org/en/workflow/production.html
- module.exports.plugins = (module.exports.plugins || []).concat([
- new webpack.DefinePlugin({
- 'process.env': {
- NODE_ENV: '"production"'
- }
- }),
- new webpack.optimize.UglifyJsPlugin({
- sourceMap: true,
- compress: {
- warnings: false
- }
- }),
- new webpack.LoaderOptionsPlugin({
- minimize: true
- })
- ])
- module.exports.externals = { 'vue': 'vue' }
- }
|