Skip to content

Commit

Permalink
chore: remove localhost https
Browse files Browse the repository at this point in the history
  • Loading branch information
kcwww committed Apr 20, 2024
1 parent 8ed8bef commit cf11554
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions front/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
import react from '@vitejs/plugin-react-swc';
import { defineConfig } from 'vite';
import mkcert from 'vite-plugin-mkcert';
//import mkcert from 'vite-plugin-mkcert';

export default defineConfig({
plugins: [react(), mkcert()],
plugins: [react(),
// mkcert(),
],
server: {
host: '0.0.0.0',
https: true,
//https: true,
proxy: {
'/api': {
target: `https://www.mysnowball.kr/api`,
Expand Down

0 comments on commit cf11554

Please sign in to comment.