-
Notifications
You must be signed in to change notification settings - Fork 75
/
gridsome.config.js
39 lines (32 loc) · 1.12 KB
/
gridsome.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// This is where project configuration and plugin options are located.
// Learn more: https://gridsome.org/docs/config
// Changes here require a server restart.
// To restart press CTRL + C in terminal and run `gridsome develop`
module.exports = {
siteName: 'College Scorecard',
plugins: [
],
pathPrefix: process.env.BASEURL || '/', //use for federalist
configureWebpack: {
},
chainWebpack (config) {
config.mode('production')
/*const vueRule = config.module.rule('vue')
vueRule.uses.clear()
vueRule.test('/\.vue$/')
.use('vue-loader')
.loader('vue-loader')
config.module
.rule('babel-loader')
.test('/\.js$/')
.use('babel-loader')
.loader('babel-loader')
config.module
.rule('css-loader')
.test('/\.css$/')
.use('css-loader')
.loader('vue-style-loader')
.loader('css-loader') */
},
siteDescription: "Find the college that’s the best fit for you! The U.S. Department of Education’s College Scorecard has the most reliable data on college costs, graduation, and post-college earnings."
}