UNPKG

jqwidgets-framework

Version:

jQWidgets is an advanced Angular, Vue, Blazor, React, Web Components, jquery, ASP .NET MVC, Custom Elements and HTML5 UI framework.

51 lines (49 loc) 1.22 kB
'use strict' const path = require('path') const webpack = require('webpack') const UglifyJsPlugin = require('uglifyjs-webpack-plugin') module.exports = { entry: { main: './main.js' }, output: { path: path.resolve(__dirname + '/dist'), filename: '[name].bundle.js' }, resolve: { extensions: ['.js', '.vue'], alias: { 'vue$': 'vue/dist/vue.esm.js', '@': path.resolve(__dirname + '/src'), } }, module: { rules: [ { test: /\.vue$/, loader: 'vue-loader' }, { test: /\.(png|jpe?g|gif|svg)(\?.*)?$/, loader: 'url-loader' }, { test: /\.css$/, loaders: ['style-loader', 'css-loader'] } ] }, plugins: [ // strip all the warnings from Vue.js source code. new webpack.DefinePlugin({ 'process.env': { NODE_ENV: '"production"' } }), // uglify build code new UglifyJsPlugin({ // this speeds up the build parallel: true }) ] }