前后端地址要匹配或者一致才能种上cookie
需要注意的是,
localhost与127.0.0.1是有区别的,不能混用
可以修改vite.config.ts文件,修改为一致的地址
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import styleImport, { VantResolve } from 'vite-plugin-style-import';
export default defineConfig({
plugins: [vue(),
styleImport({
resolves: [VantResolve()],
libs: [
{
libraryName: 'vant',
esModule: true,
resolveStyle: name => `../es/${name}/style`
}
]
}),
],
// 新增
server:{
host: '0.0.0.0',
port: 5173,
}
})