33 lines
1.5 KiB
JavaScript
33 lines
1.5 KiB
JavaScript
/* eslint-disable max-len */
|
|
process.env.VUE_APP_CONSUMER_CF_DISTRO = 'https://digitalapi.dev.safelite.io';
|
|
process.env.VUE_APP_CURRENT_ENVIRONMENT = 'Localhost';
|
|
process.env.VUE_APP_GOOGLE_PLACES_API_KEY = 'AIzaSyCuLhQcDdZTTb4JzpUFms1OCch2dk5lHF0';
|
|
|
|
// GA & GTM
|
|
// NOTE: Using the old ISS site GTM Cotnainer ID for now, will create a new one soon.
|
|
process.env.VUE_APP_GOOGLE_TAG_MANAGER_SCRIPT_BODY =
|
|
"(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer','GTM-KKNWZ3');";
|
|
process.env.VUE_APP_GOOGLE_TAG_MANAGER_NOSCRIPT_FRAME_SRC =
|
|
'https://www.googletagmanager.com/ns.html?id=GTM-KKNWZ3>m_auth=amlAYNhxUxuskQo7jmjadg>m_preview=env-38>m_cookies_win=x';
|
|
|
|
module.exports = {
|
|
publicPath: '/',
|
|
css: {
|
|
loaderOptions: {
|
|
sass: {
|
|
// Load Order Matters!!!
|
|
// Note: only include functions, variables and mixins here
|
|
additionalData: `
|
|
@import "./node_modules/bootstrap/scss/functions";
|
|
@import "@/styles/ux-variables.scss";
|
|
@import "./node_modules/bootstrap/scss/variables";
|
|
@import "./node_modules/bootstrap/scss/mixins";
|
|
@import "@/styles/mixins/customMixins";
|
|
`
|
|
}
|
|
}
|
|
},
|
|
configureWebpack: {
|
|
devtool: 'source-map'
|
|
}
|
|
};
|