Skip to content

Instantly share code, notes, and snippets.

@justinyoo
Created February 13, 2017 12:08
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save justinyoo/c78e8e4b1af0ae264cd50202aa1aa6fd to your computer and use it in GitHub Desktop.
Running Vue.js on ASP.NET Core Web Application
"use strict";
var isDevBuild = process.argv.indexOf('--env.prod') < 0;
var devConfig = require("./build/webpack.dev.conf");
var prodConfig = require("./build/webpack.prod.conf");
module.exports = isDevBuild ? devConfig : prodConfig;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment