The Bubble web UI in VueJS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

20 line
632 B

  1. /**
  2. * Copyright (c) 2020 Bubble, Inc. All rights reserved.
  3. * For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
  4. */
  5. // -------------------------------------------------------------
  6. // Copy this file to webpack.config.dev.js to use in development
  7. // -------------------------------------------------------------
  8. const webpackMerge = require('webpack-merge');
  9. module.exports = webpackMerge.merge(require('./webpack.config.js'), {
  10. mode: 'development',
  11. devServer: {
  12. proxy: {
  13. '/api': 'http://example.com:8888' // change this to wherever your bubble API is running
  14. }
  15. },
  16. });