Skip to content

Instantly share code, notes, and snippets.

View morphatic's full-sized avatar
♨️
brewing...

Morgan Benton morphatic

♨️
brewing...
View GitHub Profile
@morphatic
morphatic / merge.sh
Created September 11, 2019 02:52
Output of merging dev to master
➜ 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
@morphatic
morphatic / webpack.config.js
Created April 23, 2020 08:03
Configuring Webpack for use with Vuetify in TrilonIO/aspnetcore-Vue-starter
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)