After some toil, I finally support basic ReasonML starter code. I'm adding it to the nut-score directory because I would like to make a simple webpage that render some nutritional facts about nuts with respect to the ketogenic diet. I'm not sure if I should include or exclude te .bs.js files. See the README.md for more information.
		
			
				
	
	
		
			14 lines
		
	
	
		
			No EOL
		
	
	
		
			451 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			No EOL
		
	
	
		
			451 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
const path = require('path');
 | 
						|
 | 
						|
module.exports = {
 | 
						|
  entry: './src/Index.bs.js',
 | 
						|
  // If you ever want to use webpack during development, change 'production'
 | 
						|
  // to 'development' as per webpack documentation. Again, you don't have to
 | 
						|
  // use webpack or any other bundler during development! Recheck README if
 | 
						|
  // you didn't know this
 | 
						|
  mode: 'production',
 | 
						|
  output: {
 | 
						|
    path: path.join(__dirname, "bundleOutput"),
 | 
						|
    filename: 'index.js',
 | 
						|
  },
 | 
						|
}; |