{"version":3,"sources":["webpack:///./src/demo/snippets/js/webpack_sass_variables.txt"],"names":[],"mappings":"gHAAA,OAAe","file":"js/chunk-2d21dc67.f16bfc89.js","sourcesContent":["export default \"// webpack.config.js\\n\\nmodule.exports = {\\n module: {\\n rules: [\\n // SASS has different line endings than SCSS\\n // and cannot use semicolons in the markup\\n {\\n test: /\\\\.sass$/,\\n use: [\\n 'vue-style-loader',\\n 'css-loader',\\n {\\n loader: 'sass-loader',\\n // Requires sass-loader@^7.0.0\\n options: {\\n // This is the path to your variables\\n data: \\\"@import '@/styles/variables.scss'\\\"\\n },\\n // Requires sass-loader@^8.0.0\\n options: {\\n // This is the path to your variables\\n prependData: \\\"@import '@/styles/variables.scss'\\\"\\n },\\n },\\n ],\\n },\\n // SCSS has different line endings than SASS\\n // and needs a semicolon after the import.\\n {\\n test: /\\\\.scss$/,\\n use: [\\n 'vue-style-loader',\\n 'css-loader',\\n {\\n loader: 'sass-loader',\\n // Requires sass-loader@^7.0.0\\n options: {\\n // This is the path to your variables\\n data: \\\"@import '@/styles/variables.scss';\\\"\\n },\\n // Requires sass-loader@^8.0.0\\n options: {\\n // This is the path to your variables\\n prependData: \\\"@import '@/styles/variables.scss';\\\"\\n },\\n },\\n ],\\n },\\n ],\\n },\\n}\\n\";"],"sourceRoot":""}