Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • impl
  • kguebung04-openmp
  • 64-bit
  • hacks
5 results

cfunc.c

Blame
  • Forked from an inaccessible project.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    vue.config.js 354 B
    module.exports = {
        devServer: {
            disableHostCheck: true,
        },
        publicPath: './',
        configureWebpack: {
            devtool: 'source-map',
            devServer: {
                port: 9432,
            }
        },
    	filenameHashing: false,
    	chainWebpack: config => {
    		config.optimization.delete('splitChunks')
    	},
    	css: {
            extract: false,
        },
    }