This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ➜ v-address-fields git:(dev) $ git status | |
| On branch dev | |
| Your branch is up to date with 'origin/dev'. | |
| nothing to commit, working tree clean | |
| ➜ v-address-fields git:(dev) $ git checkout master | |
| Switched to branch 'master' | |
| Your branch is ahead of 'origin/master' by 1 commit. | |
| (use "git push" to publish your local commits) | |
| ➜ v-address-fields git:(master) $ git status |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const path = require('path') | |
| const webpack = require('webpack') | |
| const MiniCssExtractPlugin = require('mini-css-extract-plugin') | |
| const OptimizeCSSPlugin = require('optimize-css-assets-webpack-plugin') | |
| const bundleOutputDir = './wwwroot/dist' | |
| const VueLoaderPlugin = require('vue-loader/lib/plugin') | |
| module.exports = () => { | |
| console.log('Building for \x1b[33m%s\x1b[0m', process.env.NODE_ENV) |
OlderNewer