.env.production worked in local added myconfig messagepopup working (but not ready yet) added Graphql (only module)
10 lines
220 B
JavaScript
10 lines
220 B
JavaScript
// import something here
|
|
import myconfig from '../myconfig'
|
|
|
|
// leave the export, even if you don't use it
|
|
export default ({ Vue }) => {
|
|
//Vue.use(myconfig);
|
|
// something to do
|
|
Vue.prototype.$myconfig = myconfig
|
|
}
|