Forum Replies Created
-
AuthorPosts
-
July 30, 2025 at 7:13 am in reply to: Compiling for iOS 12.0, but module ‘Capacitor’ has a minimum deployment target #122298
albanaavdiu
ParticipantAfter saving :
cd ios/App
pod installForce override all deployment targets to 14.0
Open your Podfile and add this block at the end:
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings[‘IPHONEOS_DEPLOYMENT_TARGET’] = ‘14.0’
end
end
endReinstall pods
cd ios/App
rm -rf Pods Podfile.lock
pod installRe-check the results:
grep -rnw ‘./’ -e ‘IPHONEOS_DEPLOYMENT_TARGET’ –include=”*.pbxproj”September 27, 2024 at 7:23 am in reply to: Uncaught SyntaxError: The requested module ‘http://localhost:5173/node_m #122262albanaavdiu
ParticipantTo resolve the issue, it’s crucial to pay attention to how the module is being imported. Specifically, the error “doesn’t provide an export named ‘default'” indicates that the module you’re trying to import doesn’t have a default export
September 27, 2024 at 7:23 am in reply to: [plugin:vite:vue] [vue/compiler-sfc] This experimental syntax requires enabl… #122261albanaavdiu
ParticipantTo resolve the issue, it’s crucial to pay attention to how the module is being imported. Specifically, the error “doesn’t provide an export named ‘default'” indicates that the module you’re trying to import doesn’t have a default export
September 27, 2024 at 7:22 am in reply to: The requested module ‘http://localhost:5173/node_modules/.vite/deps/xlsx.js?v #122260albanaavdiu
ParticipantTo resolve the issue, it’s crucial to pay attention to how the module is being imported. Specifically, the error “doesn’t provide an export named ‘default'” indicates that the module you’re trying to import doesn’t have a default export.
September 11, 2024 at 12:25 pm in reply to: How to solve “await import(‘source-map-support’)” #122248albanaavdiu
ParticipantPossible Causes
Low Node.js Version and NPM version
https://nodejs.org/enApril 4, 2024 at 7:30 am in reply to: Solving Path Problems When Deploying Vue.js in Subdirectories #9392albanaavdiu
ParticipantIn Vue 3, the ‘base‘ option is used to specify the base URL for all relative URLs in your application. This is useful when your Vue application is not deployed at the root of your domain but in a subdirectory.
(In VUE 2 assetsPublicPath: ‘/markataepeshkut’)
(In VUE 3 base: ‘/markataepeshkut’)
vite.config.ts
import { fileURLToPath, URL } from ‘node:url’
import { defineConfig } from ‘vite’
import vue from ‘@vitejs/plugin-vue’// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
base: ‘/markataepeshkut/’,
resolve: {
alias: {
‘@’: fileURLToPath(new URL(‘./src’, import.meta.url))
}
}
}) -
AuthorPosts